From 501c6a8aca73b21d1ef20a2dee09e7a7718d56dd Mon Sep 17 00:00:00 2001 From: oliskoli Date: Sat, 18 Oct 2008 22:23:35 +0000 Subject: [PATCH] jtr: Fix MSVC errors and warnings. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@3568 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/jtr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/jtr.c b/gpsbabel/jtr.c index f8cac03e3..2fe5425b3 100644 --- a/gpsbabel/jtr.c +++ b/gpsbabel/jtr.c @@ -161,7 +161,7 @@ jtr_read(void) /* check for duplicates as suggested in format description */ - snprintf(buf, sizeof(buf), "%.6f\01\%.6f\01\%ld", lat, lon, (long)time); + snprintf(buf, sizeof(buf), "%.6f\01%.6f\01%ld", lat, lon, (long)time); if (avltree_find(trkpts, buf, NULL)) continue; wpt = waypt_new(); -- 2.30.2